home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / ansi / useansi.zip / USEANSI.TXT < prev   
Text File  |  1985-09-08  |  16KB  |  435 lines

  1. ───────────────────────────────────────────────────────────────────────────────
  2.                             USING THE ANSI DRIVER
  3.  
  4.                                       by
  5.  
  6.                                 C. Scot Giles
  7.                                875 Lake Street
  8.                           Oak Park, Illinois   60301
  9.  
  10.  
  11. This essay is an attempt to explain how I use the ANSI.SYS driver to configure
  12. the function keys on my computer, and to control the screen.  I have used
  13. these techniques on my PC and AT for years, and find them to be convenient and
  14. effective.  ANSI is not widely used by microcomputer fans because the
  15. documentation supplied by IBM on how to send control codes to the ANSI driver
  16. is among the most cryptic ever produced by IBM.  I learned them by reading
  17. computer magazines, and slowly figured out how it could be done.  I am not a
  18. professional computer programmer (indeed I am a clergyman), so some of my
  19. technical observations might be in error.  But everything here works, and I
  20. have retested it before finishing this essay.
  21.  
  22. This essay covers only IBM Personal Computers (PC, XT or AT) running DOS 2.n
  23. or greater.  I have no experience with compatibles, so you are on your own if
  24. you try to use these techniques on one.
  25.  
  26.                            LOADING THE ANSI DRIVER
  27.  
  28. In order to use any of the techniques in this essay, you must first have
  29. loaded the ANSI.SYS driver into your computer's memory using your CONFIG.SYS
  30. file.  You do this my adding the line, DEVICE=ANSI.SYS somewhere in the
  31. CONFIG.SYS file and rebooting your computer.
  32.  
  33.  
  34.  
  35.                        KEYBOARD REASSIGNMENT WITH ANSI
  36.  
  37.  
  38. Before we get to specific ways to send control codes to the (now loaded) ANSI
  39. driver, you must first know what those codes mean.  For the function keys the
  40. codes are listed on the chart below which first appeared in SOFTALK magazine.
  41. Each function key is assigned an "extended function code" which DOS will use
  42. to recognize that a function key has been pressed and in what shifted mode, if
  43. any.  Each number is expressed as a 0 followed by a semi-colon, then the
  44. number from the chart below.
  45.  
  46.                 KEY     NORMAL  SHIFT   CONTROL  ALT
  47.                 F1      59      84      94      104
  48.                 F2      60      85      95      105
  49.                 F3      61      86      96      106
  50.                 F4      62      87      97      107
  51.                 F5      63      88      98      108
  52.                 F6      64      89      99      109
  53.                 F7      65      90      100     110
  54.                 F8      66      91      101     111
  55.                 F9      67      92      102     112
  56.                 F10     68      93      103     113
  57.  
  58. Accordingly, the way to designate the F5 key would be 0;63 while the F10 key
  59. would be designated by 0;68 or 0;113 if shifted with the ALT key.
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68. ───────────────────────────────────────────────────────────────────────────────
  69.                        Using the ANSI driver, Page -2-
  70.  
  71.  
  72.  
  73. If you examine the DOS Technical Reference Manual (not the Technical Manual
  74. for PC hardware), you will find a section on SCREEN/KEYS.  This section was
  75. contained in the DOS 2.0 documentation, but IBM removed it in later editions.
  76. Here is a summary of its contents relative to keyboard redefinition.
  77.  
  78. To change one key to have the meaning of another, enter:
  79.  
  80.                                  ESC [#;#p
  81.  
  82. where the first # is the ASCII value of the key being changed and the second #
  83. is the ASCII value of the new definition.  For example, "A" has the ASCII
  84. value of 65 and "Q" has the value of 81.  So:
  85.  
  86.                                  ESC [65;81p
  87.  
  88. will result in "A" being redefined as "Q."  It is also possible to redefine a
  89. key to have the meaning of a string of characters.  This is done by enclosing
  90. the string in quotes.  So:
  91.  
  92.                                  ESC [65;"Hi there"p
  93.  
  94. would change the "A" key to have the meaning of "Hi there."  If the first
  95. value for the first # is a 0 however, DOS knows that what is being changed is
  96. not an ASCII value but the meaning of an extended function code.  So if you
  97. were to enter:
  98.  
  99.                                  ESC [0;68;"Hi there"p
  100.  
  101. DOS would know to change the meaning of the function key (in this case F10) to
  102. the sting enclosed in quotes.  This is the key to redefining your function
  103. keys to perform much used commands: like DIR, CHKDSK, COPY *.* B: etc. or to
  104. load programs from disk.
  105.  
  106. There is a final trick here.  If you end the escape command sequence with the
  107. characters ";13p" instead of just "p" the command will self-execute, just as
  108. if you pressed the [enter] key.
  109.  
  110. The IBM documentation tells the user to preface each command by an ESC
  111. command, and I have represented this in the above paragraphs by writing the
  112. characters "ESC." at the start of each control code sequence mentioned.  Most
  113. users assume that this means to press the ESC key on the keyboard when
  114. entering the commands.  Not so.  To get the Escape Sequence to the ANSI driver
  115. you must enter it using a prompt command or write a .COM file.  For example to
  116. configure the F1 key (extended function code 59) to have the meaning in DOS of
  117. "autoexec" with an [enter] command at the end of it you cannot type:
  118.  
  119.                                 ESC [0;59;"autoexec";13p
  120.  
  121. as the ESC will not be recognized by DOS as an escape sequence.  What DOS will
  122. recognize as an escape sequence is the characters "$e" although this surely
  123. looks strange at first.  Users familiar with the PROMPT command will notice
  124. that the "$" character is what the PROMPT command uses as an escape sequence,
  125. and that is precisely how we will get the redefinition to be recognized by
  126. DOS.  If you enter the following command:
  127.  
  128.  
  129.  
  130.  
  131.  
  132.  
  133.  
  134.  
  135. ───────────────────────────────────────────────────────────────────────────────
  136.                        Using the ANSI driver, Page -3-
  137.  
  138.  
  139.  
  140.                                 PROMPT $e[0;59;"autoexec";13p
  141.  
  142. you will see that it works perfectly.  You now have the secret to redefining
  143. the function keys in DOS.  Simply write and run a batch file with a list of
  144. PROMPT commands and you will have done it.  One precaution, ECHO must be ON,
  145. otherwise DOS will suppress the PROMPT command and the escape sequences will
  146. not get through.
  147.  
  148. As an example, let's create a batch file called KEYON.BAT that will set F1 as
  149. EDITOR [enter], F2 as PC-FILE [enter], F3 as PC-CALC [enter], F4 as PC-GRAPH
  150. [enter], F5 as PC-TALK [enter], F6 as PC-WRITE [enter], F7 as BASICA [enter],
  151. F8 as DIR without the [enter], F9 to run a batch file called MENUOFF.BAT
  152. [enter] and F10 to run a batch file called MENUON.BAT [enter].  It would be as
  153. follows:
  154.  
  155.                 echo on
  156.                 PROMPT $e[0;59;"EDITOR";13p
  157.                 PROMPT $e[0;60;"PC-FILE";13p
  158.                 PROMPT $e[0;61;"PC-CALC";13p
  159.                 PROMPT $e[0;62;"PC-GRAPH";13p
  160.                 PROMPT $e[0;63;"PC-TALK";13p
  161.                 PROMPT $e[0;64;"PC-WRITE";13p
  162.                 PROMPT $e[0;65;"BASICA";13p
  163.                 PROMPT $e[0;66;"DIR"p
  164.                 PROMPT $e[0;67;"MENUOFF";13p
  165.                 PROMPT $e[0;68;"MENUON";13p
  166.                 prompt
  167.                 cls
  168.  
  169. You would also want to create another file called KEYOFF.BAT which resets the
  170. function key definitions to DOS normal.  The format would be:
  171.  
  172.                 echo on
  173.                 PROMPT $e[0;59;0;59p
  174.                 PROMPT $e[0;60;0;60p
  175.                 PROMPT $e[0;61;0;61p
  176.                 PROMPT $e[0;62;0;62p
  177.                 PROMPT $e[0;63;0;63p
  178.                 PROMPT $e[0;64;0;64p
  179.                 PROMPT $e[0;65;0;65p
  180.                 PROMPT $e[0;66;0;66p
  181.                 PROMPT $e[0;67;0;67p
  182.                 PROMPT $e[0;68;0;68p
  183.                 prompt
  184.                 cls
  185.  
  186. I should mention that the purpose of the final blank PROMPT command in each of
  187. these batch files is to reset the DOS prompt to A> or whatever your default
  188. prompt is.  It serves no redefinition purpose, but does keep the screen
  189. looking clean.
  190.  
  191.  
  192.  
  193.  
  194.  
  195.  
  196.  
  197.  
  198.  
  199.  
  200.  
  201.  
  202. ────────────────────